<!-- CHRISTMAS LIGHTS -->
.christmas-lights-row {
    background: transparent;
    margin-bottom: -23px;
  z-index: 999999;
}

@-webkit-keyframes flash-1{
    0%, 100%{
        background: #f02241;
        box-shadow: 0px 4.66667px 24px 3px #f02241;
    }
    50%{
        background: rgba(240, 34, 65, 0.4);
        box-shadow: 0px 4.66667px 24px 3px rgba(240, 35, 65, .02);
    }
}
@keyframes flash-1{
    0%,
  100% {
    background: #f02241;
    box-shadow: 0px 4.66667px 24px 3px #f02241;
  }
  50% {
    background: rgba(240, 34, 65, 0.4);
    box-shadow: 0px 4.66667px 24px 3px rgba(240, 35, 65, 0.2);
  }
}
@-webkit-keyframes flash-2{
    0,
    100%{
        background: #42b261;
        box-shadow: 0px 4.66667px 24px 3px #42b261;
    }
    50%{
        background: rgba(66, 178, 97, 0.4);
        box-shadow: 0px 4.6667px 24px 3px rgba(66, 178, 97, 0.2);
    }
}
@keyframes flash-2{
    0%,
  100% {
    background: #42b261;
    box-shadow: 0px 4.66667px 24px 3px #42b261;
  }
  50% {
    background: rgba(66, 178, 97, 0.4);
    box-shadow: 0px 4.66667px 24px 3px rgba(66, 178, 97, 0.2);
  }
}

.lights-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  padding: 3px 0px 0px 0px;
  background: none !important;
}

.christmas-light-red,
.christmas-light-green {
  width: 20px;
    height: 20px;
    border-radius: 90%;
  padding: 0px 5px;
}

.christmas-light-red {
  background-color: red;
}

.christmas-light-green {
  background-color: green;
}

/* Add more styling for different screen sizes */
@media only screen and (max-width: 600px) {
  .christmas-light-red,
  .christmas-light-green {
    width: 15px; /* Adjust for smaller screens */
    height: 30px; /* Adjust for smaller screens */
  }
}

/* Animation styles */
.christmas-light-red, .christmas-light-green {
  position: relative;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  animation-direction: alternate;
}

.christmas-light-red, .christmas-light-green:before {
    content: "";
    position: sticky;
    background: #222;
    width: 15px;
    height: 15px;
    border-radius: 90%;
    top: -4.66667px;
    left: 1px;
}

.christmas-light-red:after, .christmas-light-green:after {
  content: "";
  top: -15px;
  left: 7px;
  position: absolute;
  width: 52px;
  height: 18.66667px;
  border-bottom: solid #222 2px;
  border-radius: 50%;
}

.christmas-light-red:last-child:after,
.christmas-light-green:last-child:after {
  content: none;
}

/* Adjust these styles accordingly to the keyframes in your previous code */
.christmas-light-red {
  animation-name: flash-1;
  animation-duration: 2s;
}

.christmas-light-green {
  animation-name: flash-2;
  animation-duration: 1.5s;
}

.christmas-light-red {
    animation-name: flash-1, color-transition;
    animation-duration: 2s, 3s;
}

.christmas-light-green {
    animation-name: flash-2, color-transition;
    animation-duration: 1.5s, 3s;
}

@keyframes color-transition {
    0%, 100% {
        filter: brightness(1.2);
    }
    50% {
        filter: brightness(0.8);
    }
}
